In [ ]:
import requests
resp = requests.get('https://api.stackexchange.com/2.2/questions?order=desc&sort=activity&site=stackoverflow')
print resp.status_code
print resp.content
In [ ]:
with open('/home/abhinav/apropos.c.diff', 'r') as f:
for line in f:
print line
In [ ]: